home *** CD-ROM | disk | FTP | other *** search
/ Game Power / Game Power Vol. 1 (HEPP Computer) (1995).iso / S221 / INSTALL.SCR < prev    next >
Text File  |  1995-01-12  |  4KB  |  123 lines

  1. clear
  2.  
  3. space %1: 10000 NoSpace
  4.  
  5. echo The install program will now copy 
  6. echo MetalTech: BattleDrome to your hard drive.
  7. echo Approximate hard drive space required:  10 Megs
  8. echo Hard drive space required during install:  14 Megs
  9. echo
  10. echo Do you wish to (C)ontinue or (E)xit?
  11. pick ce Continue Exit
  12.  
  13. :Continue
  14. %1:
  15. clear
  16. echo There are Two disks to install.
  17. echo It takes about 7 minutes copy and unpack the files.
  18. echo
  19. echo If this installation process fails for any reason, you
  20. echo should consult the troubleshooting section of your
  21. echo game manual as well as the README file for tips on
  22. echo resolving the problem.
  23. echo
  24. echo Copying Game files...
  25.  
  26. exists %2:RESOURCE.000 Please insert the disk labeled "Disk 1" in drive %2:.
  27. godir %4 CantCreate
  28. copy %2:install.txt .
  29. copy %2:install.hlp .
  30. copy %2:install.bat .
  31. copy %2:install.scr .
  32. copy %2:resource.cfg .
  33. copy %2:readme .
  34. copy %2:readme.bat .
  35. copy %2:copyfilz.exe .
  36. godir %4 CantCreate
  37.  
  38. copy %2:unchunk.exe
  39. copy %2:RESOURCE.000
  40. clear
  41. echo Uncompressing Files - We are currently uncompressing
  42. echo the game files from Disk 1.  This process can take
  43. echo anywhere from 1-5 minutes depending on the speed of
  44. echo your computer.
  45. echo
  46. echo Don't forget to read the "readme" file.  It contains
  47. echo instructions on how to play the game as well as
  48. echo general help information. You can view the "readme"
  49. echo file by loading it into your word processor or text
  50. echo editor.  You may also view this file in the install
  51. echo program itself.
  52. echo
  53. echo Processing %2:resource.000...
  54. unchunk RESOURCE.000 . > nul
  55. if ERRORLEVEL 1 goto BadChunk
  56. del RESOURCE.000
  57.  
  58. exists %2:RESOURCE.001 Please insert the disk labeled "Disk 2" in drive %2:.
  59. clear
  60. echo
  61. echo Enjoy this demo!
  62. echo
  63. copy %2:RESOURCE.001 
  64. clear
  65. echo
  66. echo Controls are in the "readme" file.
  67. echo
  68. echo Processing %2:resource.001...
  69. unchunk RESOURCE.001 . > nul
  70. if ERRORLEVEL 1 goto BadChunk
  71. del RESOURCE.001
  72.  
  73. exists %2:RESOURCE.000 Please insert the disk labeled "Disk 1" in drive %2:.
  74. del UNCHUNK.EXE
  75. end
  76.  
  77. :NoSpace
  78. clear
  79. echo
  80. alert There is not enough space on %1: to install MetalTech: BattleDrome on your hard drive.  13.5 megabytes of disk space are necessary.
  81. end
  82.  
  83. :CantCreate
  84. clear
  85. echo
  86. alert Unable to create directory %4
  87. end
  88.  
  89. :Corrupted
  90. alert Corrupted files exist.  Please run install again.
  91. end
  92.  
  93. :BadChunk
  94. if ERRORLEVEL 5 goto ERR5
  95. if ERRORLEVEL 4 goto ERR4
  96. if ERRORLEVEL 3 goto ERR3
  97. if ERRORLEVEL 2 goto ERR2
  98. if ERRORLEVEL 1 goto ERR1
  99. alert Unable to extract resource file.  Please run install again.
  100. end
  101.  
  102. :ERR1
  103. alert Unable to read resource file.  Make sure the drive door is shut and run install again.
  104. end
  105. :ERR2
  106. alert Unable to write resource file to hard drive.  This program only installs games on hard drives.  Run install again.  If you get this message again you may have a problem with your hard drive.
  107. end
  108. :ERR3
  109. alert Not enough memory to run extraction program.  The extraction program needs a minimum of 550k to operate.
  110. end
  111. :ERR4
  112. alert The resource file is bad.  Run install again.  If you get this message again, you probably received a bad disk.
  113. end
  114. :ERR5
  115. alert Unable to open the resource file for reading.  A possible solution might be to increase the value of the FILES setting in your CONFIG.SYS file.
  116. end
  117. :ERR6
  118. alert Unable to open the target file for writing.  A possible solution might be to increase the value of the FILES setting in your CONFIG.SYS file.
  119. end
  120.  
  121. :exit
  122. end
  123.